module.exports.Grogan Burner Services Assert Title   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 8

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
c 1
b 0
f 0
nc 1
nop 1
dl 0
loc 8
rs 9.4285
1
2
module.exports = { // adapted from: https://git.io/vodU0
3
  'Grogan Burner Services Assert Title': function (browser) {
4
    browser
5
      .url('http://localhost:3000/')
6
      .waitForElementVisible('body')
7
      .assert.title('Grogan Burner Services')
8
      .saveScreenshot('guinea-pig-test.png')
9
      .end()
10
  }
11
}
12